home *** CD-ROM | disk | FTP | other *** search
/ Complete RPG Maker XP - 41 Games / tg esp 48 rpg maker.iso / Essenciais / AdbeRdr707_en_US_distrib.exe / Data1.cab / EScript.api / EXVW / 5701 < prev    next >
Encoding:
Text File  |  2006-01-13  |  700 b   |  19 lines

  1. gMaxWidth=max(
  2.     zstring_width(zstring: '$$$/Dialogs/JSPrefs/Font'),
  3.     zstring_width(zstring: '$$$/Dialogs/JSPrefs/FontSize'));
  4.  
  5. dialog(name: '$$$/Dialogs/JSPrefs', margin_height: 0, margin_width: 0)
  6. {
  7.     view(align_children: align_left, dheight: gPrefsPanelHeight, dwidth: gPrefsPanelWidth)
  8.     {
  9.         cluster(item_id: 'clu1', name: '$$$/Dialogs/JSPrefs/General', dwidth: gPrefsPanelWidth, align_children: align_left)
  10.         {
  11.             check_box(item_id: 'enab', name: '$$$/Dialogs/JSPrefs/Enable');
  12.         }
  13.         cluster(name: '$$$/Dialogs/JSPrefs/Debugger', dwidth: gPrefsPanelWidth, align_children: align_left)
  14.         {
  15.             check_box(item_id: 'open', name: '$$$/Dialogs/JSPrefs/Open', next_tab: 'rad1');
  16.         }
  17.     }
  18. }
  19.